cody - HTMLify profile

cody
4270 Files
632074 Views
Latest files of /cody/vishal-dcode/Random Image Feed
const container = document.querySelector(".container");
const unsplashURL = "https://source.unsplash.com/featured/";
const rows = 10;
for (let i = 0; i < rows * 3; i++) {
const img = document.createElement("img");
img.loading = "lazy";
img.src = `${unsplashURL}${getRandomSize()}`;
const unsplashURL = "https://source.unsplash.com/featured/";
const rows = 10;
for (let i = 0; i < rows * 3; i++) {
const img = document.createElement("img");
img.loading = "lazy";
img.src = `${unsplashURL}${getRandomSize()}`;
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
body {
font-family: "Poppins";
background-color: #141414;
color: #fff;
}
.title {
margin: 10px 0 0;
body {
font-family: "Poppins";
background-color: #141414;
color: #fff;
}
.title {
margin: 10px 0 0;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link